b99b3743f66e96c2b2b27376db77c2ad52368c34,providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/RegistrySharedObject.java,RegistrySharedObject,callSynch,#RemoteServiceRegistrationImpl#IRemoteCall#,900

Before Change


		Object result = null;
		if (response.hadException())
			throw new ECFException("Exception in remote call", response.getException()); //$NON-NLS-1$
		result = response.getResponse();

		Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "callSynch", result); //$NON-NLS-1$
		return result;

	}

After Change


		if (response.hadException())
			throw new ECFException("Exception in remote call", response.getException()); //$NON-NLS-1$

		return response.getResponse();
	}

	protected void fireCallStartEvent(IRemoteCallListener listener, final long requestId, final IRemoteServiceReference reference, final IRemoteCall call) {